mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
update copyright years
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2016-2022 melonDS team
|
||||
Copyright 2016-2023 melonDS team
|
||||
|
||||
This file is part of melonDS.
|
||||
|
||||
@ -33,9 +33,9 @@ __attribute((always_inline)) static void Bswap128(void* Dst, const void* Src)
|
||||
#else
|
||||
__attribute((always_inline)) static void Bswap128(void* Dst, const void* Src)
|
||||
{
|
||||
for (int i = 0; i < 16; ++i)
|
||||
{
|
||||
((u8*)Dst)[i] = ((u8*)Src)[15 - i];
|
||||
for (int i = 0; i < 16; ++i)
|
||||
{
|
||||
((u8*)Dst)[i] = ((u8*)Src)[15 - i];
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user