summaryrefslogtreecommitdiff
path: root/src/editor/gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/editor/gui.cpp')
-rw-r--r--src/editor/gui.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/editor/gui.cpp b/src/editor/gui.cpp
index 94967cc..1060c00 100644
--- a/src/editor/gui.cpp
+++ b/src/editor/gui.cpp
@@ -121,18 +121,6 @@ void editor_create_tools_row( GAME_EDITOR* e ) {
editor_update_active_tool_label( e );
}
-void editor_create_view_settings_row( GAME_EDITOR* e ) {
- I32 x = 320, y = 426;
-
- gui_button( x, y, 100, 20, "compile bsp", pfn( void* b ) {
- if( editor->map->bsp )
- bsp_free( editor->map->bsp );
- editor->map->bsp = bsp_build_map( editor->map );
- } ); x += 110;
-
- gui_checkbox( x, y, "draw bsp", &e->drawbsp );
-}
-
void editor_create_map_view( GAME_EDITOR* e ) {
if( !e->map ) {
dlog( "editor_create_map_views() : no map loaded\n" );
@@ -153,7 +141,6 @@ void editor_create_map_view( GAME_EDITOR* e ) {
editor_create_properties_column( e );
editor_create_game_view_column( e );
editor_create_tools_row( e );
- editor_create_view_settings_row( e );
}
void close_new_map_popup( void* ) {