mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-18 02:42:59 +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
|
#undef main
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
|
||||||
(void*)pool;
|
(void)pool;
|
||||||
|
|
||||||
SheAppDelegate *app_delegate = [[SheAppDelegate alloc] init];
|
SheAppDelegate* app_delegate = [[SheAppDelegate alloc] init];
|
||||||
return allegro_main(argc, argv, app_delegate);
|
return allegro_main(argc, argv, app_delegate);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user