ocarina: Store window height in ocarina.window.h

Width was a typo...

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-09-03 09:55:38 -04:00
parent df79e67f12
commit 9b996a7bb1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ static gboolean configure(GtkWidget *widget, GdkEvent *event, gpointer data)
if (w != cur_w)
libsaria::prefs::set("ocarina.window.w", w);
if (h != cur_h)
libsaria::prefs::set("ocarina.window.h", w);
libsaria::prefs::set("ocarina.window.h", h);
return FALSE;
}