mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Static analysis fix: Value stored to '[bcd]' is never read.
This commit is contained in:
parent
faaaf6c572
commit
546cb8901e
@ -408,15 +408,17 @@ SDL_GetCPUType(void)
|
|||||||
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(b & 0xff); b >>= 8;
|
SDL_CPUType[i++] = (char)(b & 0xff);
|
||||||
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
|
||||||
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
SDL_CPUType[i++] = (char)(d & 0xff); d >>= 8;
|
||||||
|
SDL_CPUType[i++] = (char)(d & 0xff);
|
||||||
|
|
||||||
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
||||||
SDL_CPUType[i++] = (char)(c & 0xff); c >>= 8;
|
SDL_CPUType[i++] = (char)(c & 0xff);
|
||||||
}
|
}
|
||||||
if (!SDL_CPUType[0]) {
|
if (!SDL_CPUType[0]) {
|
||||||
SDL_strlcpy(SDL_CPUType, "Unknown", sizeof(SDL_CPUType));
|
SDL_strlcpy(SDL_CPUType, "Unknown", sizeof(SDL_CPUType));
|
||||||
|
Loading…
Reference in New Issue
Block a user