diff options
Diffstat (limited to 'src/video/allegro_v.cpp')
-rw-r--r-- | src/video/allegro_v.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video/allegro_v.cpp b/src/video/allegro_v.cpp index e225b05fd..029cc062a 100644 --- a/src/video/allegro_v.cpp +++ b/src/video/allegro_v.cpp @@ -29,7 +29,7 @@ #ifdef _DEBUG /* Allegro replaces SEGV/ABRT signals meaning that the debugger will never - * be triggered, so rereplace the signals and make the debugger userful. */ + * be triggered, so rereplace the signals and make the debugger useful. */ #include <signal.h> #endif @@ -438,7 +438,7 @@ const char *VideoDriver_Allegro::Start(const char * const *parm) #if defined _DEBUG /* Allegro replaces SEGV/ABRT signals meaning that the debugger will never - * be triggered, so rereplace the signals and make the debugger userful. */ + * be triggered, so rereplace the signals and make the debugger useful. */ signal(SIGABRT, NULL); signal(SIGSEGV, NULL); #endif |