From 6b19be495a88994c5933a94f6a6890d6dc2c134c Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 19 May 2020 20:24:45 +0200 Subject: [PATCH] display: fix long-standing typo in error message How was this never caught?! --- panda/src/display/frameBufferProperties.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/display/frameBufferProperties.cxx b/panda/src/display/frameBufferProperties.cxx index cb6d14da3f..a1b0bab9f3 100644 --- a/panda/src/display/frameBufferProperties.cxx +++ b/panda/src/display/frameBufferProperties.cxx @@ -605,7 +605,7 @@ verify_hardware_software(const FrameBufferProperties &props, const std::string & if (get_force_hardware() < props.get_force_hardware()) { display_cat.error() - << "The application requested harware acceleration, but your OpenGL\n"; + << "The application requested hardware acceleration, but your OpenGL\n"; display_cat.error() << "driver, " << renderer << ", only supports software rendering.\n"; display_cat.error()