Added meta, some cleanup

This commit is contained in:
simon.kagstrom 2009-01-03 20:42:55 +00:00
parent 5f4fb38944
commit bee14ed6f8
2 changed files with 13 additions and 1 deletions

View File

@ -312,10 +312,11 @@ void C64::VBlank(bool draw_frame)
TheCIA2->CountTOD();
// Update window if needed
static uint64_t lastFrame;
if (draw_frame) {
TheDisplay->Update();
}
/* From Acorn port */
static uint64_t lastFrame;
uint32_t now = SDL_GetTicks();
if ( (now - lastFrame) < 20 ) {

11
meta.xml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Frodo</name>
<coder>Simon Kagstrom</coder>
<version>1</version>
<release_date>20090107</release_date>
<short_description>Frodo is a C64 emulator</short_description>
<long_description>Frodo is a C64 emulator written by Christian Bauer. It
supports C64 disk and tape images in the .d64 and .t64 formats. The port
to Wii was done by Simon Kagstrom.</long_description>
</app>