MAME:规范代码

This commit is contained in:
sin365 2025-11-13 14:02:50 +08:00
parent f49f7fef00
commit 6edb3b5400
2 changed files with 3 additions and 3 deletions

View File

@ -2350,7 +2350,8 @@ namespace MAME.Core
} }
public static void cpuexec_timeslice() public static void cpuexec_timeslice()
{ {
Atime target = EmuTimer.lt[0].expire; //Atime target = EmuTimer.lt[0].expire;
Atime target = EmuTimer.lt._frist_Timer.expire;
Atime tbase = EmuTimer.global_basetime; Atime tbase = EmuTimer.global_basetime;
int ran; int ran;
Atime at; Atime at;

View File

@ -1,5 +1,4 @@
using Mono.Cecil.Cil; using System;
using System;
namespace MAME.Core namespace MAME.Core
{ {