Cambiado nombre del proyecto de "pr02" a "pr03"

parent 5143507c
Showing with 3 additions and 3 deletions
cmake_minimum_required(VERSION 3.25)
project(pr02)
project(pr03)
set(CMAKE_CXX_STANDARD 17)
......
......@@ -63,7 +63,7 @@ void scroll_callback(GLFWwindow *window, double xoffset, double yoffset) {
}
int main() {
PAG::log << "Starting Application PAG - Prueba 02" << std::endl;
PAG::log << "Starting Application PAG - Prueba 03" << std::endl;
glfwSetErrorCallback((GLFWerrorfun) error_callback);
......@@ -77,7 +77,7 @@ int main() {
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
GLFWwindow *window;
window = glfwCreateWindow(1024, 576, "PAG Practica 2", nullptr, nullptr);
window = glfwCreateWindow(1024, 576, "PAG Practica 3", nullptr, nullptr);
if (window == nullptr) {
glfwTerminate();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment