Skip to content

Commit

Permalink
BaseApplication: solve the build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 10, 2023
1 parent 79c056a commit e5e7b94
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
import org.lwjgl.glfw.GLFW;
import org.lwjgl.glfw.GLFWErrorCallback;
import org.lwjgl.glfw.GLFWFramebufferSizeCallback;
import org.lwjgl.system.Callback;
import org.lwjgl.system.Configuration;
import org.lwjgl.system.MemoryUtil;
import org.lwjgl.vulkan.VK10;
import org.lwjgl.vulkan.VkAllocationCallbacks;

/**
* A single-window, 3-D visualization application using LWJGL v3, GLFW, and
Expand All @@ -65,7 +67,7 @@ abstract public class BaseApplication {
/**
* version of the V-Sport graphics engine
*/
final private static int engineVersion = VK10.VK_MAKE_VERSION(0, 1, 0);
final static int engineVersion = VK10.VK_MAKE_VERSION(0, 1, 0);
/**
* maximum number of frames in flight
*/
Expand Down

0 comments on commit e5e7b94

Please sign in to comment.