remove unused Windows HANDLE (#142)

This commit is contained in:
Willian 2022-09-02 00:43:16 +00:00 committed by GitHub
parent 8c060fa1c7
commit c220ad0b5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ void OS_Sleep(int delay_ms) {
char* OS_GetFirstFileInDirectory(char* path) {
char with_extension[256];
WIN32_FIND_DATA find_data;
HANDLE hFind = NULL;
strcpy(with_extension, path);
strcat(with_extension, "\\*.???");