Skip to content

Commit

Permalink
RMG: fix vulkan video extension function definitions in VidExt.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Dec 20, 2024
1 parent 5fd460d commit 1a84d6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/RMG/VidExt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ static uint32_t VidExt_GLGetDefaultFramebuffer(void)
return (*l_OGLWidget)->GetContext()->defaultFramebufferObject();
}

EXPORT m64p_error CALL VidExt_VK_GetSurface(void** Surface, void* Instance)
static m64p_error VidExt_VK_GetSurface(void** Surface, void* Instance)
{
if (l_RenderMode != M64P_RENDER_VULKAN)
{
Expand Down Expand Up @@ -434,7 +434,7 @@ EXPORT m64p_error CALL VidExt_VK_GetSurface(void** Surface, void* Instance)
return M64ERR_SUCCESS;
}

EXPORT m64p_error CALL VidExt_VK_GetInstanceExtensions(const char** Extensions[], uint32_t* NumExtensions)
static m64p_error VidExt_VK_GetInstanceExtensions(const char** Extensions[], uint32_t* NumExtensions)
{
if (l_RenderMode != M64P_RENDER_VULKAN)
{
Expand Down

0 comments on commit 1a84d6b

Please sign in to comment.