mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-19 16:58:38 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -17,7 +17,7 @@ MemTexture::MemTexture(const std::wstring& _url, std::uint8_t* pbData,
|
||||
// 4J - remember to add deletes in here for any created BufferedImages when
|
||||
// implemented
|
||||
loadedImage = new BufferedImage(pbData, dataBytes);
|
||||
if (processor == NULL) {
|
||||
if (processor == nullptr) {
|
||||
} else {
|
||||
// loadedImage=processor.process(ImageIO.read(huc.getInputStream()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user