summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xatari/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/atari/misc.c b/atari/misc.c
index 974d37e69..7e054c840 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -121,8 +121,8 @@ struct gui_window * find_guiwin_by_aes_handle(short handle){
}
while(gw != NULL) {
- if( gw->root->win != NULL
- && gemtk_wm_get_handle(gw->root->win) == handle ) {
+ if(gw->root->win != NULL
+ && gemtk_wm_get_handle(gw->root->win) == handle) {
return(gw);
}
else