mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix POLYMER=0 GTK C++ build. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4773 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dc9d552470
commit
731e4ffa99
2 changed files with 1 additions and 2 deletions
|
@ -608,4 +608,3 @@ void dynamicgtk_uninit(void);
|
||||||
#endif /* LINKED_GTK */
|
#endif /* LINKED_GTK */
|
||||||
|
|
||||||
#endif /* dynamicgtk_h_ */
|
#endif /* dynamicgtk_h_ */
|
||||||
|
|
||||||
|
|
|
@ -545,7 +545,7 @@ static GtkWidget *create_window(void)
|
||||||
gtk_table_attach(GTK_TABLE(stwidgets.configtlayout), stwidgets.vmode3dcombo, 1,2, 0,1,
|
gtk_table_attach(GTK_TABLE(stwidgets.configtlayout), stwidgets.vmode3dcombo, 1,2, 0,1,
|
||||||
(GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)0, 4, 0);
|
(GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)0, 4, 0);
|
||||||
#else
|
#else
|
||||||
gtk_table_attach(GTK_TABLE(stwidgets.configtlayout), stwidgets.vmode3dcombo, 1,2, 0,1, GTK_EXPAND | GTK_FILL, (GtkAttachOptions)0, 4, 7);
|
gtk_table_attach(GTK_TABLE(stwidgets.configtlayout), stwidgets.vmode3dcombo, 1,2, 0,1, (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), (GtkAttachOptions)0, 4, 7);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Fullscreen checkbox
|
// Fullscreen checkbox
|
||||||
|
|
Loading…
Reference in a new issue