Subversion Repositories Shiroi

Rev

Rev 34 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34 Rev 41
Line 1... Line 1...
1
/* $Id: main.c 34 2024-09-01 10:13:47Z nishi $ */
1
/* $Id: main.c 41 2024-09-02 03:56:45Z nishi $ */
2
 
2
 
3
#include <stdio.h>
3
#include <stdio.h>
4
#include <stdbool.h>
4
#include <stdbool.h>
5
#include <sys/stat.h>
5
#include <sys/stat.h>
6
#include <stdlib.h>
6
#include <stdlib.h>
Line 351... Line 351...
351
			}
351
			}
352
		}
352
		}
353
 
353
 
354
		EndDrawing();
354
		EndDrawing();
355
	}
355
	}
-
 
356
	if(video != NULL) UnloadRenderTexture(r);
356
	CloseWindow();
357
	CloseWindow();
357
	UnloadAudioStream(as);
358
	UnloadAudioStream(as);
358
	if(video != NULL) UnloadRenderTexture(r);
-
 
359
	shiroi.stop = true;
359
	shiroi.stop = true;
360
	thread_end();
360
	thread_end();
361
}
361
}