mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-11 20:05:58 +03:00
chore(util): fix indentation in scoped switch cases
This commit is contained in:
parent
6a06eb16e7
commit
5240db6e0f
@ -34,8 +34,7 @@ uint32_t SFile::GetFileSize(SFile* file, uint32_t* filesizeHigh) {
|
|||||||
uint32_t low = 0;
|
uint32_t low = 0;
|
||||||
|
|
||||||
switch (file->m_type) {
|
switch (file->m_type) {
|
||||||
case SFILE_PAQ:
|
case SFILE_PAQ: {
|
||||||
{
|
|
||||||
// Get size from stormlib
|
// Get size from stormlib
|
||||||
DWORD dwHigh = 0;
|
DWORD dwHigh = 0;
|
||||||
DWORD dwLow = SFileGetFileSize(file->m_handle, &dwHigh);
|
DWORD dwLow = SFileGetFileSize(file->m_handle, &dwHigh);
|
||||||
@ -43,8 +42,7 @@ uint32_t SFile::GetFileSize(SFile* file, uint32_t* filesizeHigh) {
|
|||||||
high = static_cast<uint32_t>(dwHigh);
|
high = static_cast<uint32_t>(dwHigh);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SFILE_PLAIN:
|
case SFILE_PLAIN: {
|
||||||
{
|
|
||||||
uint64_t size = Blizzard::File::GetFileInfo(reinterpret_cast<Blizzard::File::StreamRecord*>(file->m_handle))->size;
|
uint64_t size = Blizzard::File::GetFileInfo(reinterpret_cast<Blizzard::File::StreamRecord*>(file->m_handle))->size;
|
||||||
low = size & 0xFFFFFFFF;
|
low = size & 0xFFFFFFFF;
|
||||||
high = size >> 32;
|
high = size >> 32;
|
||||||
@ -162,14 +160,12 @@ int32_t SFile::OpenEx(SArchive* archive, const char* filename, uint32_t flags, S
|
|||||||
// TODO Proper implementation
|
// TODO Proper implementation
|
||||||
int32_t SFile::Read(SFile* file, void* buffer, size_t bytestoread, size_t* bytesread, SOVERLAPPED* overlapped, TASYNCPARAMBLOCK* asyncparam) {
|
int32_t SFile::Read(SFile* file, void* buffer, size_t bytestoread, size_t* bytesread, SOVERLAPPED* overlapped, TASYNCPARAMBLOCK* asyncparam) {
|
||||||
switch (file->m_type) {
|
switch (file->m_type) {
|
||||||
case SFILE_PLAIN:
|
case SFILE_PLAIN: {
|
||||||
{
|
|
||||||
auto stream = reinterpret_cast<Blizzard::File::StreamRecord*>(file->m_handle);
|
auto stream = reinterpret_cast<Blizzard::File::StreamRecord*>(file->m_handle);
|
||||||
Blizzard::File::Read(stream, buffer, bytestoread, bytesread);
|
Blizzard::File::Read(stream, buffer, bytestoread, bytesread);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
case SFILE_PAQ:
|
case SFILE_PAQ: {
|
||||||
{
|
|
||||||
DWORD read = 0;
|
DWORD read = 0;
|
||||||
if (SFileReadFile(file->m_handle, buffer, static_cast<DWORD>(bytestoread), &read, nullptr)) {
|
if (SFileReadFile(file->m_handle, buffer, static_cast<DWORD>(bytestoread), &read, nullptr)) {
|
||||||
if (bytesread) {
|
if (bytesread) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user