mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-10 12:44:53 +00:00
Fix line to mark "pool" as a unused var
This commit is contained in:
parent
4921eeca9c
commit
573a78f8a2
@ -42,9 +42,9 @@ extern "C" int allegro_main(int argc, char *argv[], NSObject* app_delegate);
|
||||
#undef main
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||
(void*)pool;
|
||||
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
|
||||
(void)pool;
|
||||
|
||||
SheAppDelegate *app_delegate = [[SheAppDelegate alloc] init];
|
||||
SheAppDelegate* app_delegate = [[SheAppDelegate alloc] init];
|
||||
return allegro_main(argc, argv, app_delegate);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user