C++ Fundamentals Course Debug Time Issue

Hi everyone! I’m following along with the C++ Fundamentals Course for Unreal, and I’m having a bit of an issue with the popup window. Whenever I Run Debug, it takes forever to load up the window. Does anyone know why? My code is identical to the instructions so I don’t know what could be wrong here.
I’m working in Visual Studio Code, thanks in advance!

#include "raylib.h"

int main()

{

    int Width = 350;

    InitWindow(Width, 200, "My Window");

    while(true)

    {

    }

}

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.

Privacy & Terms