mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 03:23:15 +01:00
Reduce scope of variable in Imaging.cpp
This commit is contained in:
@@ -36,7 +36,6 @@ namespace Imaging
|
||||
{
|
||||
png_structp png_ptr;
|
||||
png_infop info_ptr;
|
||||
unsigned int sig_read = 0;
|
||||
|
||||
// Setup PNG structures
|
||||
png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
|
||||
@@ -55,6 +54,7 @@ namespace Imaging
|
||||
// Open PNG file
|
||||
try
|
||||
{
|
||||
unsigned int sig_read = 0;
|
||||
auto fs = FileStream(path, FILE_MODE_OPEN);
|
||||
|
||||
// Set error handling
|
||||
|
||||
Reference in New Issue
Block a user