mirror of https://github.com/PCSX2/pcsx2.git
gs: silence a couple warnings
This commit is contained in:
parent
3ed58ffde0
commit
59e06c8bbd
|
@ -128,7 +128,7 @@
|
|||
#define EXPORT_C_(type) extern "C" type __stdcall
|
||||
#define EXPORT_C EXPORT_C_(void)
|
||||
|
||||
#define ALIGN_STACK(n) alignas(n) int dummy__;
|
||||
#define ALIGN_STACK(n) alignas(n) int dummy__; (void)dummy__;
|
||||
|
||||
#else
|
||||
|
||||
|
|
|
@ -1682,7 +1682,7 @@ void GSState::FlushPrim()
|
|||
{
|
||||
// could be an unsupported draw call
|
||||
}
|
||||
catch (const std::bad_alloc& e)
|
||||
catch (const std::bad_alloc&)
|
||||
{
|
||||
// Texture Out Of Memory
|
||||
PurgePool();
|
||||
|
|
Loading…
Reference in New Issue