mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-28 07:29:57 +00:00
Some confusion about method name in NNTimer. Renamed it.
This commit is contained in:
parent
12e723e9a4
commit
44e1e0455e
@ -36,10 +36,10 @@
|
|||||||
#import "timer.h"
|
#import "timer.h"
|
||||||
|
|
||||||
#undef check // memory.h defines a check macro, clashes with an OS X one?
|
#undef check // memory.h defines a check macro, clashes with an OS X one?
|
||||||
#import <cpu_emulation.h>
|
#import "cpu_emulation.h"
|
||||||
|
|
||||||
#define DEBUG 0
|
#define DEBUG 0
|
||||||
#import <debug.h>
|
#import "debug.h"
|
||||||
|
|
||||||
@implementation Emulator
|
@implementation Emulator
|
||||||
|
|
||||||
@ -353,7 +353,7 @@ uint8 lastXPRAM[XPRAM_SIZE]; // Copy of PRAM
|
|||||||
#endif
|
#endif
|
||||||
emul = [NNThread new];
|
emul = [NNThread new];
|
||||||
RTC = [NNTimer new];
|
RTC = [NNTimer new];
|
||||||
redraw = [[NNTimer alloc] initWithAutoReleasePool]
|
redraw = [[NNTimer alloc] initWithAutoRelPool];
|
||||||
tick = [NNTimer new];
|
tick = [NNTimer new];
|
||||||
xPRAM = [NNTimer new];
|
xPRAM = [NNTimer new];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user