Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/sb7.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef __SB7_H__
#define __SB7_H__

#ifdef WIN32
#ifdef _WIN32
#pragma once
#define _CRT_SECURE_NO_WARNINGS 1

Expand Down Expand Up @@ -177,7 +177,7 @@ class application

virtual void init()
{
strcpy(info.title, "OpenGL SuperBible Example");
strcpy_s(info.title, "OpenGL SuperBible Example");
info.windowWidth = 800;
info.windowHeight = 600;
#ifdef __APPLE__
Expand Down