mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-13 22:04:07 +02:00
Update to v095r10 release.
byuu says: Changelog: - int_t<bits> replaced with Integer<bits> - uint_t<bits> replaced with Natural<bits> - fixed "Synchronize Audio" menu option that broke recently - all of sfc/performance ported to "auto function() -> return;" syntax With this WIP, all of higan is finally ported over to the new function declaration syntax. Thank the gods. There's still going to be periodic disruption for diffs from porting over signed->int, unsigned->uint, and whatever we come up with for the new Natural<> and Integer<> classes. But the worst of it's behind us now.
This commit is contained in:
@@ -111,7 +111,7 @@ auto integer(char* result, intmax value) -> char* {
|
||||
return result;
|
||||
}
|
||||
|
||||
auto decimal(char* result, uintmax value) -> char* {
|
||||
auto natural(char* result, uintmax value) -> char* {
|
||||
char buffer[64];
|
||||
uint size = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user